3     layout="{{CheckboxesView.formItem.config.direction == 'horizontal' ? 'row' : 'column'}}"
 
   6       ng-repeat="option in CheckboxesView.formItem.options track by $index"
 
   7       ng-model="option.selected"
 
   8       ng-change="CheckboxesView.toggleSelectedOption(option)"
 
   9       ng-disabled="CheckboxesView.disableOptions && !option.selected"
 
  11       >{{option.value}}</md-checkbox
 
  15   <div ng-messages="CheckboxesView.form.$error">
 
  16     <div ng-message="minSelections">
 
  17       Must select {{CheckboxesView.formItem.maxSelections || 1}} items